home *** CD-ROM | disk | FTP | other *** search
/ CD Fun House 1 / CD Fun House (Wayzata Technology).iso / •Games Parlour• / •Maj Jong• / HyperGunshy •••• / HyperGunshy ееее / card_3913.txt < prev    next >
Text File  |  1990-10-08  |  54KB  |  2,347 lines

  1. -- card: 3913 from stack: in
  2. -- bmap block id: 0
  3. -- flags: 4000
  4. -- background id: 3736
  5. -- name: Hyper-GunShy Startup
  6. ----- HyperTalk script -----
  7. -- Handle all user interaction
  8.  
  9. -- Note iconlist uses (icon mod 36) not (icon) and we actually add 1
  10. -- optimum size for an icon button is 34 pixels wide x 38 pixels high
  11. -- Although most of the program is not hard coded, there are in
  12. -- fact always 144 card buttons, and the LegalMoves handler was made
  13. -- easier by hardcoding
  14. -- Note the HyperCard bugs : it can't handle some complex expressions
  15.  
  16. -- undo last move
  17. on TabKey
  18.   global icon1, icon2, num1, num2, sofar, numicons, changed
  19.   if icon1 <> 0 then
  20.     set hilite of button num1 to false
  21.     put 0 into icon1
  22.     put 0 into num1
  23.   end if
  24.   -- remove last element from queue
  25.   if length(sofar) > 0 then
  26.     put true into changed
  27.     put last word of sofar into num2
  28.     delete last word of sofar
  29.     put last word of sofar into num1
  30.     delete last word of sofar
  31.     show button num1
  32.     show button num2
  33.     add 2 to numicons
  34.   else beep
  35. end TabKey
  36.  
  37. -- this controls the rules of the game
  38. function LegalMove thenum, theicon
  39. global iconlist
  40. set cursor to 4 -- watch
  41. put false into passed
  42. -- put the params into msg -- debug
  43. -- HyperCard bug
  44. put word thenum of iconlist into temp
  45. get first item of temp
  46. -- put "Icon = "&thenum&","&it into msg -- debug
  47. if (it = theicon) then -- passes 1st test
  48.   -- handle special cases
  49.   put false into special
  50.   if thenum = 1 then return true
  51.   if thenum = 31 then
  52.     put 142 into lefttop
  53.     put 142 into leftbot
  54.     put 32 into righttop
  55.     put 32 into rightbot
  56.     put true into special
  57.   end if
  58.   if thenum = 42 then
  59.     put 41 into lefttop
  60.     put 41 into leftbot
  61.     put 143 into righttop
  62.     put 143 into rightbot
  63.     put true into special
  64.   end if
  65.   if thenum = 43 then
  66.     put 142 into lefttop
  67.     put 142 into leftbot
  68.     put 44 into righttop
  69.     put 44 into rightbot
  70.     put true into special
  71.   end if
  72.   if thenum = 54 then
  73.     put 53 into lefttop
  74.     put 53 into leftbot
  75.     put 143 into righttop
  76.     put 143 into rightbot
  77.     put true into special
  78.   end if
  79.   if (thenum >= 137) and (thenum <= 140) then
  80.     get visible of button 141 -- topmost button
  81.     if it is true then return false else return true
  82.   end if
  83.   if (thenum = 141) or (thenum = 142) or (thenum = 144) then
  84.     return true
  85.   end if
  86.   if thenum = 143 then
  87.     put 42 into lefttop
  88.     put 54 into leftbot
  89.     put 144 into righttop
  90.     put 144 into rightbot
  91.     put true into special
  92.   end if
  93.   if not special then -- normal case
  94.     put thenum - 1 into lefttop
  95.     put lefttop into leftbot
  96.     put thenum + 1 into righttop
  97.     put righttop into rightbot
  98.     -- check layer
  99.     -- HyperCard bug
  100.     put word thenum of iconlist into temp
  101.     put second item of temp into thelayer
  102.     put third item of temp into therow
  103.     put word lefttop of iconlist into temp
  104.     put second item of temp into leftlayer
  105.     put third item of temp into leftrow
  106.     put word righttop of iconlist into temp
  107.     put second item of temp into rightlayer
  108.     put third item of temp into rightrow
  109.     if (thelayer <> leftlayer) or (thelayer <> rightlayer) or (therow <> leftrow) or (therow <> rightrow) then
  110.       put true into passed
  111.     end if
  112.   end if
  113.   if not passed then
  114.     -- put "l/r = "&lefttop&","&leftbot&","&righttop&","&rightbot into msg -- debug
  115.     -- check moveability left/right
  116.     if thenum = lefttop then
  117.       put false into lefttopvis
  118.       put false into leftbotvis
  119.     else
  120.       put visible of button lefttop into lefttopvis
  121.       put visible of button leftbot into leftbotvis
  122.     end if
  123.     if thenum = righttop then
  124.       put false into righttopvis
  125.       put false into rightbotvis
  126.     else
  127.       put visible of button righttop into righttopvis
  128.       put visible of button rightbot into rightbotvis
  129.     end if
  130.     -- put "vis = "&lefttopvis&","&leftbotvis&","&righttopvis&","&rightbotvis into msg -- debug
  131.     if (not lefttopvis and not leftbotvis) or (not righttopvis and not rightbotvis) then
  132.       put true into passed
  133.     end if
  134.   end if
  135. end if
  136. return passed
  137. end LegalMove
  138.  
  139. -- give hint to user
  140. on OptKey someicon, somenum
  141.   global iconlist
  142.   -- put the params into msg -- debug
  143.   put empty into templist
  144.   if somenum <> 0 then set hilite of button somenum to false
  145.   repeat with j = 1 to the number of buttons -- have to search all icons
  146.     -- HyperCard bug
  147.     put word j of iconlist into temp
  148.     put first item of temp into theicon
  149.     -- if no icons currently selected, show any icon that
  150.     -- can be chosen, according to the rules
  151.     if somenum = 0 then put theicon into someicon -- so test below passes
  152.     if (theicon = someicon) and (j <> somenum) and LegalMove(j,someicon) then
  153.       put j && empty after templist
  154.       set hilite of button j to true
  155.     end if
  156.   end repeat
  157.   set cursor to 1 -- arrow
  158.   wait until the OptionKey is up
  159.   -- restore things
  160.   set cursor to 4 -- watch
  161.   repeat with j = 1 to the number of words in templist
  162.     get word j of templist
  163.     set hilite of button it to false
  164.   end repeat
  165.   if somenum <> 0 then set hilite of button somenum to true
  166.   put empty into temp
  167. end Optkey
  168.  
  169. -- the main event loop
  170. on mouseup
  171.   global icon1, icon2, num1, num2, sofar, numicons, iconlist, changed
  172.   get the name of the target
  173.   -- test if someone clicked in the card, since this handles the
  174.   -- card as well as the icon buttons
  175.   if second word of it <> "button" then
  176.     -- allow user to click outside icons to deselect current icon
  177.     if num1 <> 0 then
  178.       set hilite of button num1 to false
  179.       put 0 into icon1
  180.       put 0 into num1
  181.     end if
  182.     if the OptionKey is down then OptKey 0,0 -- all legal moves
  183.     exit mouseup -- was card
  184.   end if
  185.   if icon1 = 0 then
  186.     put the number of the target into num1
  187.     -- HyperCard bug
  188.     put word num1 of iconlist into temp
  189.     put first item of temp into icon1
  190.     -- put "1st button "&num1&","&icon1 into msg -- debug
  191.     -- test if valid piece to move
  192.     if LegalMove(num1,icon1) then
  193.       set hilite of button num1 to true
  194.       -- need then/end if like this, otherwise HyperCard gets else wrong
  195.       if the OptionKey is down then
  196.         OptKey icon1,num1
  197.       end if
  198.     else
  199.       put 0 into icon1
  200.       put 0 into num1
  201.     end if
  202.     exit mouseup -- that's all we do for first icon of a pair
  203.   end if
  204.   if icon2 = 0 then
  205.     put the number of the target into num2
  206.     -- HyperCard bug
  207.     put word num2 of iconlist into temp
  208.     put first item of temp into icon2
  209.     -- put "2nd button "&num2&","&icon2 into msg -- debug
  210.   end if
  211.   if (num1 = num2) then -- user selected same icon - do "nothing"
  212.     put 0 into icon2
  213.     put 0 into num2
  214.     exit mouseup
  215.   end if
  216.   put LegalMove(num2,icon2) into ok
  217.   if ok then -- a valid move
  218.     if (icon1 = icon2) then -- got a valid match
  219.       put true into changed
  220.       set hilite of button num1 to false -- so "backspacing" looks ok
  221.       set hilite of button num2 to false -- ditto
  222.       hide button num1
  223.       hide button num2
  224.       beep
  225.       -- add to them to the queue
  226.       put num1 && empty after sofar
  227.       put num2 && empty after sofar
  228.       put 0 into icon1
  229.       put 0 into icon2
  230.       subtract 2 from numicons
  231.       if numicons <=1 then -- finished game
  232.         play "Harpsichord" tempo 200 "ce e g a#w."
  233.         -- wait until the sound is "done"
  234.         answer "Congratulations, you have finished the game"
  235.       end if
  236.     else -- not the same icon
  237.       -- a valid move, so make this the new first icon
  238.       set hilite of button num1 to false
  239.       set hilite of button num2 to true
  240.       put icon2 into icon1
  241.       put num2 into num1
  242.       put 0 into icon2
  243.       put 0 into num2
  244.     end if
  245.   else -- not a valid move, just clear both icons
  246.     set hilite of button num1 to false
  247.     put 0 into icon1
  248.     put 0 into num1
  249.     put 0 into icon2
  250.     put 0 into num2
  251.   end if
  252. end mouseup
  253.  
  254. -- These are quick & dirty utility routines to set up this Stack
  255. -- when it gets all screwed up etc
  256.  
  257. -- to use : in msg box, enter : send "newstuff" to this card
  258.  
  259. on newstuff
  260.   global iconlist -- need this, as local iconlist seems not to work
  261.   -- global height, width, starth, startv, layer, row, col, nums, start, finish -- debug
  262.   -- you can hide the menuBar if you like
  263.   choose button tool
  264.   set editBkgnd to false
  265.   set cursor to 4 -- watch
  266.   -- keep at least one button, to make it easier
  267.   put the number of buttons into temp
  268.   repeat with j = 2 to temp
  269.     get the loc of button 2 -- it always renumbers the button #'s
  270.     show button 2 -- so we can click on it
  271.     click at it
  272.     doMenu "Clear Button"
  273.   end repeat
  274.   -- exit newstuff -- comment this line to do whole thing
  275.   show button 1
  276.   put the rect of button 1 into temprect
  277.   -- center the buttons on the screen
  278.   put (third item of temprect - first item of temprect) into width
  279.   put (fourth item of temprect - second item of temprect) into height
  280.   put (512 - (15 * width)) div 2 into starth
  281.   put (342 - (8 * height)) div 2 into startv
  282.   -- starth,startv points to center of 1st button (loc)
  283.   add (width div 2) to starth
  284.   add (height div 2) - 5 to startv -- 5 is a fudge factor
  285.   put (starth + width)&","&startv into pos
  286.   set the loc of button 1 to pos
  287.   click at pos -- select 1st button so we can clone
  288.   put "0,1,1 " into iconlist
  289.   repeat with layer = 1 to 4
  290.     put startv into second item of pos
  291.     if layer = 1 then put "2,12 3,10 2,11 1,12 1,12 2,11 3,10 1,12" into nums -- bottom layer (1st)
  292.     if layer = 2 then put "0,0 4,9 4,9 4,9 4,9 4,9 4,9" into nums
  293.     if layer = 3 then put "0,0 0,0 5,8 5,8 5,8 5,8" into nums
  294.     if layer = 4 then put "0,0 0,0 0,0 6,7 6,7" into nums
  295.  
  296.     repeat with row = 1 to the number of words in nums
  297.       -- Hypercard bug
  298.       -- put item 1 of word row of nums into start
  299.       -- put item 2 of word row of nums into finish
  300.       put word row of nums into temp
  301.       put first item of temp into start
  302.       put second item of temp into finish
  303.       if (start <> 0) and (finish <> 0) then
  304.         put (starth + (start - 1) * width) into first item of pos
  305.         repeat with col = start to finish
  306.           add width to first item of pos
  307.           drag from the clickLoc to pos with OptionKey -- clone a button
  308.           put "0,"&layer&","&row&space after iconlist -- build it for later
  309.         end repeat
  310.       end if -- otherwise skip row
  311.       add height to second item of pos
  312.     end repeat
  313.   end repeat
  314.   -- top layer (special)
  315.   put (starth + (width div 2) + 6 * width)&","& (startv + (height div 2) + 3 * height) into pos
  316.   drag from the clickLoc to pos with OptionKey -- clone a button
  317.   put starth&","&(startv + (height div 2) + 3 * height) into pos
  318.   drag from the clickLoc to pos with OptionKey -- clone a button
  319.   put (starth + 13 * width)&","& (startv + (height div 2) + 3 * height) into pos
  320.   drag from the clickLoc to pos with OptionKey -- clone a button
  321.   put (starth + 14 * width)&","& (startv + (height div 2) + 3 * height) into pos
  322.   drag from the clickLoc to pos with OptionKey -- clone a button
  323.   repeat with j = 1 to 4
  324.     put "0,5,0 " after iconlist -- build it for later
  325.   end repeat
  326.   -- save the iconlist
  327.   put iconlist into field 1 of card "Temp Work Storage"
  328.   choose browse tool
  329. end newstuff
  330.  
  331.  
  332.  
  333. -- part 3 (button)
  334. -- low flags: 00
  335. -- high flags: 0003
  336. -- rect: left=35 top=14 right=52 bottom=69
  337. -- title width / last selected line: 0
  338. -- icon id / first selected line: 148 / 148
  339. -- text alignment: 1
  340. -- font id: 0
  341. -- text size: 12
  342. -- style flags: 0
  343. -- line height: 16
  344. -- part name: 
  345.  
  346.  
  347. -- part 3354 (button)
  348. -- low flags: 00
  349. -- high flags: 0003
  350. -- rect: left=69 top=14 right=52 bottom=103
  351. -- title width / last selected line: 0
  352. -- icon id / first selected line: 156 / 156
  353. -- text alignment: 1
  354. -- font id: 0
  355. -- text size: 12
  356. -- style flags: 0
  357. -- line height: 16
  358. -- part name: 
  359.  
  360.  
  361. -- part 3355 (button)
  362. -- low flags: 00
  363. -- high flags: 0003
  364. -- rect: left=103 top=14 right=52 bottom=137
  365. -- title width / last selected line: 0
  366. -- icon id / first selected line: 171 / 171
  367. -- text alignment: 1
  368. -- font id: 0
  369. -- text size: 12
  370. -- style flags: 0
  371. -- line height: 16
  372. -- part name: 
  373.  
  374.  
  375. -- part 3356 (button)
  376. -- low flags: 00
  377. -- high flags: 0003
  378. -- rect: left=137 top=14 right=52 bottom=171
  379. -- title width / last selected line: 0
  380. -- icon id / first selected line: 155 / 155
  381. -- text alignment: 1
  382. -- font id: 0
  383. -- text size: 12
  384. -- style flags: 0
  385. -- line height: 16
  386. -- part name: 
  387.  
  388.  
  389. -- part 3357 (button)
  390. -- low flags: 00
  391. -- high flags: 0003
  392. -- rect: left=171 top=14 right=52 bottom=205
  393. -- title width / last selected line: 0
  394. -- icon id / first selected line: 140 / 140
  395. -- text alignment: 1
  396. -- font id: 0
  397. -- text size: 12
  398. -- style flags: 0
  399. -- line height: 16
  400. -- part name: 
  401.  
  402.  
  403. -- part 3358 (button)
  404. -- low flags: 00
  405. -- high flags: 0003
  406. -- rect: left=205 top=14 right=52 bottom=239
  407. -- title width / last selected line: 0
  408. -- icon id / first selected line: 161 / 161
  409. -- text alignment: 1
  410. -- font id: 0
  411. -- text size: 12
  412. -- style flags: 0
  413. -- line height: 16
  414. -- part name: 
  415.  
  416.  
  417. -- part 3359 (button)
  418. -- low flags: 00
  419. -- high flags: 0003
  420. -- rect: left=239 top=14 right=52 bottom=273
  421. -- title width / last selected line: 0
  422. -- icon id / first selected line: 142 / 142
  423. -- text alignment: 1
  424. -- font id: 0
  425. -- text size: 12
  426. -- style flags: 0
  427. -- line height: 16
  428. -- part name: 
  429.  
  430.  
  431. -- part 3360 (button)
  432. -- low flags: 00
  433. -- high flags: 0003
  434. -- rect: left=273 top=14 right=52 bottom=307
  435. -- title width / last selected line: 0
  436. -- icon id / first selected line: 142 / 142
  437. -- text alignment: 1
  438. -- font id: 0
  439. -- text size: 12
  440. -- style flags: 0
  441. -- line height: 16
  442. -- part name: 
  443.  
  444.  
  445. -- part 3361 (button)
  446. -- low flags: 00
  447. -- high flags: 0003
  448. -- rect: left=307 top=14 right=52 bottom=341
  449. -- title width / last selected line: 0
  450. -- icon id / first selected line: 159 / 159
  451. -- text alignment: 1
  452. -- font id: 0
  453. -- text size: 12
  454. -- style flags: 0
  455. -- line height: 16
  456. -- part name: 
  457.  
  458.  
  459. -- part 3362 (button)
  460. -- low flags: 00
  461. -- high flags: 0003
  462. -- rect: left=341 top=14 right=52 bottom=375
  463. -- title width / last selected line: 0
  464. -- icon id / first selected line: 175 / 175
  465. -- text alignment: 1
  466. -- font id: 0
  467. -- text size: 12
  468. -- style flags: 0
  469. -- line height: 16
  470. -- part name: 
  471.  
  472.  
  473. -- part 3363 (button)
  474. -- low flags: 00
  475. -- high flags: 0003
  476. -- rect: left=375 top=14 right=52 bottom=409
  477. -- title width / last selected line: 0
  478. -- icon id / first selected line: 140 / 140
  479. -- text alignment: 1
  480. -- font id: 0
  481. -- text size: 12
  482. -- style flags: 0
  483. -- line height: 16
  484. -- part name: 
  485.  
  486.  
  487. -- part 3364 (button)
  488. -- low flags: 00
  489. -- high flags: 0003
  490. -- rect: left=409 top=14 right=52 bottom=443
  491. -- title width / last selected line: 0
  492. -- icon id / first selected line: 168 / 168
  493. -- text alignment: 1
  494. -- font id: 0
  495. -- text size: 12
  496. -- style flags: 0
  497. -- line height: 16
  498. -- part name: 
  499.  
  500.  
  501. -- part 3365 (button)
  502. -- low flags: 00
  503. -- high flags: 0003
  504. -- rect: left=103 top=52 right=90 bottom=137
  505. -- title width / last selected line: 0
  506. -- icon id / first selected line: 167 / 167
  507. -- text alignment: 1
  508. -- font id: 0
  509. -- text size: 12
  510. -- style flags: 0
  511. -- line height: 16
  512. -- part name: 
  513.  
  514.  
  515. -- part 3366 (button)
  516. -- low flags: 00
  517. -- high flags: 0003
  518. -- rect: left=137 top=52 right=90 bottom=171
  519. -- title width / last selected line: 0
  520. -- icon id / first selected line: 150 / 150
  521. -- text alignment: 1
  522. -- font id: 0
  523. -- text size: 12
  524. -- style flags: 0
  525. -- line height: 16
  526. -- part name: 
  527.  
  528.  
  529. -- part 3367 (button)
  530. -- low flags: 00
  531. -- high flags: 0003
  532. -- rect: left=171 top=52 right=90 bottom=205
  533. -- title width / last selected line: 0
  534. -- icon id / first selected line: 155 / 155
  535. -- text alignment: 1
  536. -- font id: 0
  537. -- text size: 12
  538. -- style flags: 0
  539. -- line height: 16
  540. -- part name: 
  541.  
  542.  
  543. -- part 3368 (button)
  544. -- low flags: 00
  545. -- high flags: 0003
  546. -- rect: left=205 top=52 right=90 bottom=239
  547. -- title width / last selected line: 0
  548. -- icon id / first selected line: 172 / 172
  549. -- text alignment: 1
  550. -- font id: 0
  551. -- text size: 12
  552. -- style flags: 0
  553. -- line height: 16
  554. -- part name: 
  555.  
  556.  
  557. -- part 3369 (button)
  558. -- low flags: 00
  559. -- high flags: 0003
  560. -- rect: left=239 top=52 right=90 bottom=273
  561. -- title width / last selected line: 0
  562. -- icon id / first selected line: 171 / 171
  563. -- text alignment: 1
  564. -- font id: 0
  565. -- text size: 12
  566. -- style flags: 0
  567. -- line height: 16
  568. -- part name: 
  569.  
  570.  
  571. -- part 3370 (button)
  572. -- low flags: 00
  573. -- high flags: 0003
  574. -- rect: left=273 top=52 right=90 bottom=307
  575. -- title width / last selected line: 0
  576. -- icon id / first selected line: 142 / 142
  577. -- text alignment: 1
  578. -- font id: 0
  579. -- text size: 12
  580. -- style flags: 0
  581. -- line height: 16
  582. -- part name: 
  583.  
  584.  
  585. -- part 3371 (button)
  586. -- low flags: 00
  587. -- high flags: 0003
  588. -- rect: left=307 top=52 right=90 bottom=341
  589. -- title width / last selected line: 0
  590. -- icon id / first selected line: 148 / 148
  591. -- text alignment: 1
  592. -- font id: 0
  593. -- text size: 12
  594. -- style flags: 0
  595. -- line height: 16
  596. -- part name: 
  597.  
  598.  
  599. -- part 3372 (button)
  600. -- low flags: 00
  601. -- high flags: 0003
  602. -- rect: left=341 top=52 right=90 bottom=375
  603. -- title width / last selected line: 0
  604. -- icon id / first selected line: 144 / 144
  605. -- text alignment: 1
  606. -- font id: 0
  607. -- text size: 12
  608. -- style flags: 0
  609. -- line height: 16
  610. -- part name: 
  611.  
  612.  
  613. -- part 3373 (button)
  614. -- low flags: 00
  615. -- high flags: 0003
  616. -- rect: left=69 top=90 right=128 bottom=103
  617. -- title width / last selected line: 0
  618. -- icon id / first selected line: 172 / 172
  619. -- text alignment: 1
  620. -- font id: 0
  621. -- text size: 12
  622. -- style flags: 0
  623. -- line height: 16
  624. -- part name: 
  625.  
  626.  
  627. -- part 3374 (button)
  628. -- low flags: 00
  629. -- high flags: 0003
  630. -- rect: left=103 top=90 right=128 bottom=137
  631. -- title width / last selected line: 0
  632. -- icon id / first selected line: 158 / 158
  633. -- text alignment: 1
  634. -- font id: 0
  635. -- text size: 12
  636. -- style flags: 0
  637. -- line height: 16
  638. -- part name: 
  639.  
  640.  
  641. -- part 3375 (button)
  642. -- low flags: 00
  643. -- high flags: 0003
  644. -- rect: left=137 top=90 right=128 bottom=171
  645. -- title width / last selected line: 0
  646. -- icon id / first selected line: 151 / 151
  647. -- text alignment: 1
  648. -- font id: 0
  649. -- text size: 12
  650. -- style flags: 0
  651. -- line height: 16
  652. -- part name: 
  653.  
  654.  
  655. -- part 3376 (button)
  656. -- low flags: 00
  657. -- high flags: 0003
  658. -- rect: left=171 top=90 right=128 bottom=205
  659. -- title width / last selected line: 0
  660. -- icon id / first selected line: 170 / 170
  661. -- text alignment: 1
  662. -- font id: 0
  663. -- text size: 12
  664. -- style flags: 0
  665. -- line height: 16
  666. -- part name: 
  667.  
  668.  
  669. -- part 3377 (button)
  670. -- low flags: 00
  671. -- high flags: 0003
  672. -- rect: left=205 top=90 right=128 bottom=239
  673. -- title width / last selected line: 0
  674. -- icon id / first selected line: 168 / 168
  675. -- text alignment: 1
  676. -- font id: 0
  677. -- text size: 12
  678. -- style flags: 0
  679. -- line height: 16
  680. -- part name: 
  681.  
  682.  
  683. -- part 3378 (button)
  684. -- low flags: 00
  685. -- high flags: 0003
  686. -- rect: left=239 top=90 right=128 bottom=273
  687. -- title width / last selected line: 0
  688. -- icon id / first selected line: 164 / 164
  689. -- text alignment: 1
  690. -- font id: 0
  691. -- text size: 12
  692. -- style flags: 0
  693. -- line height: 16
  694. -- part name: 
  695.  
  696.  
  697. -- part 3379 (button)
  698. -- low flags: 00
  699. -- high flags: 0003
  700. -- rect: left=273 top=90 right=128 bottom=307
  701. -- title width / last selected line: 0
  702. -- icon id / first selected line: 167 / 167
  703. -- text alignment: 1
  704. -- font id: 0
  705. -- text size: 12
  706. -- style flags: 0
  707. -- line height: 16
  708. -- part name: 
  709.  
  710.  
  711. -- part 3380 (button)
  712. -- low flags: 00
  713. -- high flags: 0003
  714. -- rect: left=307 top=90 right=128 bottom=341
  715. -- title width / last selected line: 0
  716. -- icon id / first selected line: 175 / 175
  717. -- text alignment: 1
  718. -- font id: 0
  719. -- text size: 12
  720. -- style flags: 0
  721. -- line height: 16
  722. -- part name: 
  723.  
  724.  
  725. -- part 3381 (button)
  726. -- low flags: 00
  727. -- high flags: 0003
  728. -- rect: left=341 top=90 right=128 bottom=375
  729. -- title width / last selected line: 0
  730. -- icon id / first selected line: 163 / 163
  731. -- text alignment: 1
  732. -- font id: 0
  733. -- text size: 12
  734. -- style flags: 0
  735. -- line height: 16
  736. -- part name: 
  737.  
  738.  
  739. -- part 3382 (button)
  740. -- low flags: 00
  741. -- high flags: 0003
  742. -- rect: left=375 top=90 right=128 bottom=409
  743. -- title width / last selected line: 0
  744. -- icon id / first selected line: 149 / 149
  745. -- text alignment: 1
  746. -- font id: 0
  747. -- text size: 12
  748. -- style flags: 0
  749. -- line height: 16
  750. -- part name: 
  751.  
  752.  
  753. -- part 3383 (button)
  754. -- low flags: 00
  755. -- high flags: 0003
  756. -- rect: left=35 top=128 right=166 bottom=69
  757. -- title width / last selected line: 0
  758. -- icon id / first selected line: 163 / 163
  759. -- text alignment: 1
  760. -- font id: 0
  761. -- text size: 12
  762. -- style flags: 0
  763. -- line height: 16
  764. -- part name: 
  765.  
  766.  
  767. -- part 3384 (button)
  768. -- low flags: 00
  769. -- high flags: 0003
  770. -- rect: left=69 top=128 right=166 bottom=103
  771. -- title width / last selected line: 0
  772. -- icon id / first selected line: 169 / 169
  773. -- text alignment: 1
  774. -- font id: 0
  775. -- text size: 12
  776. -- style flags: 0
  777. -- line height: 16
  778. -- part name: 
  779.  
  780.  
  781. -- part 3385 (button)
  782. -- low flags: 00
  783. -- high flags: 0003
  784. -- rect: left=103 top=128 right=166 bottom=137
  785. -- title width / last selected line: 0
  786. -- icon id / first selected line: 160 / 160
  787. -- text alignment: 1
  788. -- font id: 0
  789. -- text size: 12
  790. -- style flags: 0
  791. -- line height: 16
  792. -- part name: 
  793.  
  794.  
  795. -- part 3386 (button)
  796. -- low flags: 00
  797. -- high flags: 0003
  798. -- rect: left=137 top=128 right=166 bottom=171
  799. -- title width / last selected line: 0
  800. -- icon id / first selected line: 156 / 156
  801. -- text alignment: 1
  802. -- font id: 0
  803. -- text size: 12
  804. -- style flags: 0
  805. -- line height: 16
  806. -- part name: 
  807.  
  808.  
  809. -- part 3387 (button)
  810. -- low flags: 00
  811. -- high flags: 0003
  812. -- rect: left=171 top=128 right=166 bottom=205
  813. -- title width / last selected line: 0
  814. -- icon id / first selected line: 156 / 156
  815. -- text alignment: 1
  816. -- font id: 0
  817. -- text size: 12
  818. -- style flags: 0
  819. -- line height: 16
  820. -- part name: 
  821.  
  822.  
  823. -- part 3388 (button)
  824. -- low flags: 00
  825. -- high flags: 0003
  826. -- rect: left=205 top=128 right=166 bottom=239
  827. -- title width / last selected line: 0
  828. -- icon id / first selected line: 144 / 144
  829. -- text alignment: 1
  830. -- font id: 0
  831. -- text size: 12
  832. -- style flags: 0
  833. -- line height: 16
  834. -- part name: 
  835.  
  836.  
  837. -- part 3389 (button)
  838. -- low flags: 00
  839. -- high flags: 0003
  840. -- rect: left=239 top=128 right=166 bottom=273
  841. -- title width / last selected line: 0
  842. -- icon id / first selected line: 173 / 173
  843. -- text alignment: 1
  844. -- font id: 0
  845. -- text size: 12
  846. -- style flags: 0
  847. -- line height: 16
  848. -- part name: 
  849.  
  850.  
  851. -- part 3390 (button)
  852. -- low flags: 00
  853. -- high flags: 0003
  854. -- rect: left=273 top=128 right=166 bottom=307
  855. -- title width / last selected line: 0
  856. -- icon id / first selected line: 165 / 165
  857. -- text alignment: 1
  858. -- font id: 0
  859. -- text size: 12
  860. -- style flags: 0
  861. -- line height: 16
  862. -- part name: 
  863.  
  864.  
  865. -- part 3391 (button)
  866. -- low flags: 00
  867. -- high flags: 0003
  868. -- rect: left=307 top=128 right=166 bottom=341
  869. -- title width / last selected line: 0
  870. -- icon id / first selected line: 150 / 150
  871. -- text alignment: 1
  872. -- font id: 0
  873. -- text size: 12
  874. -- style flags: 0
  875. -- line height: 16
  876. -- part name: 
  877.  
  878.  
  879. -- part 3392 (button)
  880. -- low flags: 00
  881. -- high flags: 0003
  882. -- rect: left=341 top=128 right=166 bottom=375
  883. -- title width / last selected line: 0
  884. -- icon id / first selected line: 159 / 159
  885. -- text alignment: 1
  886. -- font id: 0
  887. -- text size: 12
  888. -- style flags: 0
  889. -- line height: 16
  890. -- part name: 
  891.  
  892.  
  893. -- part 3393 (button)
  894. -- low flags: 00
  895. -- high flags: 0003
  896. -- rect: left=375 top=128 right=166 bottom=409
  897. -- title width / last selected line: 0
  898. -- icon id / first selected line: 147 / 147
  899. -- text alignment: 1
  900. -- font id: 0
  901. -- text size: 12
  902. -- style flags: 0
  903. -- line height: 16
  904. -- part name: 
  905.  
  906.  
  907. -- part 3394 (button)
  908. -- low flags: 00
  909. -- high flags: 0003
  910. -- rect: left=409 top=128 right=166 bottom=443
  911. -- title width / last selected line: 0
  912. -- icon id / first selected line: 154 / 154
  913. -- text alignment: 1
  914. -- font id: 0
  915. -- text size: 12
  916. -- style flags: 0
  917. -- line height: 16
  918. -- part name: 
  919.  
  920.  
  921. -- part 3395 (button)
  922. -- low flags: 00
  923. -- high flags: 0003
  924. -- rect: left=35 top=166 right=204 bottom=69
  925. -- title width / last selected line: 0
  926. -- icon id / first selected line: 169 / 169
  927. -- text alignment: 1
  928. -- font id: 0
  929. -- text size: 12
  930. -- style flags: 0
  931. -- line height: 16
  932. -- part name: 
  933.  
  934.  
  935. -- part 3396 (button)
  936. -- low flags: 00
  937. -- high flags: 0003
  938. -- rect: left=69 top=166 right=204 bottom=103
  939. -- title width / last selected line: 0
  940. -- icon id / first selected line: 145 / 145
  941. -- text alignment: 1
  942. -- font id: 0
  943. -- text size: 12
  944. -- style flags: 0
  945. -- line height: 16
  946. -- part name: 
  947.  
  948.  
  949. -- part 3397 (button)
  950. -- low flags: 00
  951. -- high flags: 0003
  952. -- rect: left=103 top=166 right=204 bottom=137
  953. -- title width / last selected line: 0
  954. -- icon id / first selected line: 158 / 158
  955. -- text alignment: 1
  956. -- font id: 0
  957. -- text size: 12
  958. -- style flags: 0
  959. -- line height: 16
  960. -- part name: 
  961.  
  962.  
  963. -- part 3398 (button)
  964. -- low flags: 00
  965. -- high flags: 0003
  966. -- rect: left=137 top=166 right=204 bottom=171
  967. -- title width / last selected line: 0
  968. -- icon id / first selected line: 167 / 167
  969. -- text alignment: 1
  970. -- font id: 0
  971. -- text size: 12
  972. -- style flags: 0
  973. -- line height: 16
  974. -- part name: 
  975.  
  976.  
  977. -- part 3399 (button)
  978. -- low flags: 00
  979. -- high flags: 0003
  980. -- rect: left=171 top=166 right=204 bottom=205
  981. -- title width / last selected line: 0
  982. -- icon id / first selected line: 140 / 140
  983. -- text alignment: 1
  984. -- font id: 0
  985. -- text size: 12
  986. -- style flags: 0
  987. -- line height: 16
  988. -- part name: 
  989.  
  990.  
  991. -- part 3400 (button)
  992. -- low flags: 00
  993. -- high flags: 0003
  994. -- rect: left=205 top=166 right=204 bottom=239
  995. -- title width / last selected line: 0
  996. -- icon id / first selected line: 173 / 173
  997. -- text alignment: 1
  998. -- font id: 0
  999. -- text size: 12
  1000. -- style flags: 0
  1001. -- line height: 16
  1002. -- part name: 
  1003.  
  1004.  
  1005. -- part 3401 (button)
  1006. -- low flags: 00
  1007. -- high flags: 0003
  1008. -- rect: left=239 top=166 right=204 bottom=273
  1009. -- title width / last selected line: 0
  1010. -- icon id / first selected line: 172 / 172
  1011. -- text alignment: 1
  1012. -- font id: 0
  1013. -- text size: 12
  1014. -- style flags: 0
  1015. -- line height: 16
  1016. -- part name: 
  1017.  
  1018.  
  1019. -- part 3402 (button)
  1020. -- low flags: 00
  1021. -- high flags: 0003
  1022. -- rect: left=273 top=166 right=204 bottom=307
  1023. -- title width / last selected line: 0
  1024. -- icon id / first selected line: 170 / 170
  1025. -- text alignment: 1
  1026. -- font id: 0
  1027. -- text size: 12
  1028. -- style flags: 0
  1029. -- line height: 16
  1030. -- part name: 
  1031.  
  1032.  
  1033. -- part 3403 (button)
  1034. -- low flags: 00
  1035. -- high flags: 0003
  1036. -- rect: left=307 top=166 right=204 bottom=341
  1037. -- title width / last selected line: 0
  1038. -- icon id / first selected line: 171 / 171
  1039. -- text alignment: 1
  1040. -- font id: 0
  1041. -- text size: 12
  1042. -- style flags: 0
  1043. -- line height: 16
  1044. -- part name: 
  1045.  
  1046.  
  1047. -- part 3404 (button)
  1048. -- low flags: 00
  1049. -- high flags: 0003
  1050. -- rect: left=341 top=166 right=204 bottom=375
  1051. -- title width / last selected line: 0
  1052. -- icon id / first selected line: 146 / 146
  1053. -- text alignment: 1
  1054. -- font id: 0
  1055. -- text size: 12
  1056. -- style flags: 0
  1057. -- line height: 16
  1058. -- part name: 
  1059.  
  1060.  
  1061. -- part 3405 (button)
  1062. -- low flags: 00
  1063. -- high flags: 0003
  1064. -- rect: left=375 top=166 right=204 bottom=409
  1065. -- title width / last selected line: 0
  1066. -- icon id / first selected line: 166 / 166
  1067. -- text alignment: 1
  1068. -- font id: 0
  1069. -- text size: 12
  1070. -- style flags: 0
  1071. -- line height: 16
  1072. -- part name: 
  1073.  
  1074.  
  1075. -- part 3406 (button)
  1076. -- low flags: 00
  1077. -- high flags: 0003
  1078. -- rect: left=409 top=166 right=204 bottom=443
  1079. -- title width / last selected line: 0
  1080. -- icon id / first selected line: 164 / 164
  1081. -- text alignment: 1
  1082. -- font id: 0
  1083. -- text size: 12
  1084. -- style flags: 0
  1085. -- line height: 16
  1086. -- part name: 
  1087.  
  1088.  
  1089. -- part 3407 (button)
  1090. -- low flags: 00
  1091. -- high flags: 0003
  1092. -- rect: left=69 top=204 right=242 bottom=103
  1093. -- title width / last selected line: 0
  1094. -- icon id / first selected line: 165 / 165
  1095. -- text alignment: 1
  1096. -- font id: 0
  1097. -- text size: 12
  1098. -- style flags: 0
  1099. -- line height: 16
  1100. -- part name: 
  1101.  
  1102.  
  1103. -- part 3408 (button)
  1104. -- low flags: 00
  1105. -- high flags: 0003
  1106. -- rect: left=103 top=204 right=242 bottom=137
  1107. -- title width / last selected line: 0
  1108. -- icon id / first selected line: 158 / 158
  1109. -- text alignment: 1
  1110. -- font id: 0
  1111. -- text size: 12
  1112. -- style flags: 0
  1113. -- line height: 16
  1114. -- part name: 
  1115.  
  1116.  
  1117. -- part 3409 (button)
  1118. -- low flags: 00
  1119. -- high flags: 0003
  1120. -- rect: left=137 top=204 right=242 bottom=171
  1121. -- title width / last selected line: 0
  1122. -- icon id / first selected line: 161 / 161
  1123. -- text alignment: 1
  1124. -- font id: 0
  1125. -- text size: 12
  1126. -- style flags: 0
  1127. -- line height: 16
  1128. -- part name: 
  1129.  
  1130.  
  1131. -- part 3410 (button)
  1132. -- low flags: 00
  1133. -- high flags: 0003
  1134. -- rect: left=171 top=204 right=242 bottom=205
  1135. -- title width / last selected line: 0
  1136. -- icon id / first selected line: 161 / 161
  1137. -- text alignment: 1
  1138. -- font id: 0
  1139. -- text size: 12
  1140. -- style flags: 0
  1141. -- line height: 16
  1142. -- part name: 
  1143.  
  1144.  
  1145. -- part 3411 (button)
  1146. -- low flags: 00
  1147. -- high flags: 0003
  1148. -- rect: left=205 top=204 right=242 bottom=239
  1149. -- title width / last selected line: 0
  1150. -- icon id / first selected line: 152 / 152
  1151. -- text alignment: 1
  1152. -- font id: 0
  1153. -- text size: 12
  1154. -- style flags: 0
  1155. -- line height: 16
  1156. -- part name: 
  1157.  
  1158.  
  1159. -- part 3412 (button)
  1160. -- low flags: 00
  1161. -- high flags: 0003
  1162. -- rect: left=239 top=204 right=242 bottom=273
  1163. -- title width / last selected line: 0
  1164. -- icon id / first selected line: 154 / 154
  1165. -- text alignment: 1
  1166. -- font id: 0
  1167. -- text size: 12
  1168. -- style flags: 0
  1169. -- line height: 16
  1170. -- part name: 
  1171.  
  1172.  
  1173. -- part 3413 (button)
  1174. -- low flags: 00
  1175. -- high flags: 0003
  1176. -- rect: left=273 top=204 right=242 bottom=307
  1177. -- title width / last selected line: 0
  1178. -- icon id / first selected line: 143 / 143
  1179. -- text alignment: 1
  1180. -- font id: 0
  1181. -- text size: 12
  1182. -- style flags: 0
  1183. -- line height: 16
  1184. -- part name: 
  1185.  
  1186.  
  1187. -- part 3414 (button)
  1188. -- low flags: 00
  1189. -- high flags: 0003
  1190. -- rect: left=307 top=204 right=242 bottom=341
  1191. -- title width / last selected line: 0
  1192. -- icon id / first selected line: 160 / 160
  1193. -- text alignment: 1
  1194. -- font id: 0
  1195. -- text size: 12
  1196. -- style flags: 0
  1197. -- line height: 16
  1198. -- part name: 
  1199.  
  1200.  
  1201. -- part 3415 (button)
  1202. -- low flags: 00
  1203. -- high flags: 0003
  1204. -- rect: left=341 top=204 right=242 bottom=375
  1205. -- title width / last selected line: 0
  1206. -- icon id / first selected line: 160 / 160
  1207. -- text alignment: 1
  1208. -- font id: 0
  1209. -- text size: 12
  1210. -- style flags: 0
  1211. -- line height: 16
  1212. -- part name: 
  1213.  
  1214.  
  1215. -- part 3416 (button)
  1216. -- low flags: 00
  1217. -- high flags: 0003
  1218. -- rect: left=375 top=204 right=242 bottom=409
  1219. -- title width / last selected line: 0
  1220. -- icon id / first selected line: 146 / 146
  1221. -- text alignment: 1
  1222. -- font id: 0
  1223. -- text size: 12
  1224. -- style flags: 0
  1225. -- line height: 16
  1226. -- part name: 
  1227.  
  1228.  
  1229. -- part 3417 (button)
  1230. -- low flags: 00
  1231. -- high flags: 0003
  1232. -- rect: left=103 top=242 right=280 bottom=137
  1233. -- title width / last selected line: 0
  1234. -- icon id / first selected line: 155 / 155
  1235. -- text alignment: 1
  1236. -- font id: 0
  1237. -- text size: 12
  1238. -- style flags: 0
  1239. -- line height: 16
  1240. -- part name: 
  1241.  
  1242.  
  1243. -- part 3418 (button)
  1244. -- low flags: 00
  1245. -- high flags: 0003
  1246. -- rect: left=137 top=242 right=280 bottom=171
  1247. -- title width / last selected line: 0
  1248. -- icon id / first selected line: 166 / 166
  1249. -- text alignment: 1
  1250. -- font id: 0
  1251. -- text size: 12
  1252. -- style flags: 0
  1253. -- line height: 16
  1254. -- part name: 
  1255.  
  1256.  
  1257. -- part 3419 (button)
  1258. -- low flags: 00
  1259. -- high flags: 0003
  1260. -- rect: left=171 top=242 right=280 bottom=205
  1261. -- title width / last selected line: 0
  1262. -- icon id / first selected line: 175 / 175
  1263. -- text alignment: 1
  1264. -- font id: 0
  1265. -- text size: 12
  1266. -- style flags: 0
  1267. -- line height: 16
  1268. -- part name: 
  1269.  
  1270.  
  1271. -- part 3420 (button)
  1272. -- low flags: 00
  1273. -- high flags: 0003
  1274. -- rect: left=205 top=242 right=280 bottom=239
  1275. -- title width / last selected line: 0
  1276. -- icon id / first selected line: 172 / 172
  1277. -- text alignment: 1
  1278. -- font id: 0
  1279. -- text size: 12
  1280. -- style flags: 0
  1281. -- line height: 16
  1282. -- part name: 
  1283.  
  1284.  
  1285. -- part 3421 (button)
  1286. -- low flags: 00
  1287. -- high flags: 0003
  1288. -- rect: left=239 top=242 right=280 bottom=273
  1289. -- title width / last selected line: 0
  1290. -- icon id / first selected line: 162 / 162
  1291. -- text alignment: 1
  1292. -- font id: 0
  1293. -- text size: 12
  1294. -- style flags: 0
  1295. -- line height: 16
  1296. -- part name: 
  1297.  
  1298.  
  1299. -- part 3422 (button)
  1300. -- low flags: 00
  1301. -- high flags: 0003
  1302. -- rect: left=273 top=242 right=280 bottom=307
  1303. -- title width / last selected line: 0
  1304. -- icon id / first selected line: 162 / 162
  1305. -- text alignment: 1
  1306. -- font id: 0
  1307. -- text size: 12
  1308. -- style flags: 0
  1309. -- line height: 16
  1310. -- part name: 
  1311.  
  1312.  
  1313. -- part 3423 (button)
  1314. -- low flags: 00
  1315. -- high flags: 0003
  1316. -- rect: left=307 top=242 right=280 bottom=341
  1317. -- title width / last selected line: 0
  1318. -- icon id / first selected line: 153 / 153
  1319. -- text alignment: 1
  1320. -- font id: 0
  1321. -- text size: 12
  1322. -- style flags: 0
  1323. -- line height: 16
  1324. -- part name: 
  1325.  
  1326.  
  1327. -- part 3424 (button)
  1328. -- low flags: 00
  1329. -- high flags: 0003
  1330. -- rect: left=341 top=242 right=280 bottom=375
  1331. -- title width / last selected line: 0
  1332. -- icon id / first selected line: 149 / 149
  1333. -- text alignment: 1
  1334. -- font id: 0
  1335. -- text size: 12
  1336. -- style flags: 0
  1337. -- line height: 16
  1338. -- part name: 
  1339.  
  1340.  
  1341. -- part 3425 (button)
  1342. -- low flags: 00
  1343. -- high flags: 0003
  1344. -- rect: left=35 top=280 right=318 bottom=69
  1345. -- title width / last selected line: 0
  1346. -- icon id / first selected line: 152 / 152
  1347. -- text alignment: 1
  1348. -- font id: 0
  1349. -- text size: 12
  1350. -- style flags: 0
  1351. -- line height: 16
  1352. -- part name: 
  1353.  
  1354.  
  1355. -- part 3426 (button)
  1356. -- low flags: 00
  1357. -- high flags: 0003
  1358. -- rect: left=69 top=280 right=318 bottom=103
  1359. -- title width / last selected line: 0
  1360. -- icon id / first selected line: 164 / 164
  1361. -- text alignment: 1
  1362. -- font id: 0
  1363. -- text size: 12
  1364. -- style flags: 0
  1365. -- line height: 16
  1366. -- part name: 
  1367.  
  1368.  
  1369. -- part 3427 (button)
  1370. -- low flags: 00
  1371. -- high flags: 0003
  1372. -- rect: left=103 top=280 right=318 bottom=137
  1373. -- title width / last selected line: 0
  1374. -- icon id / first selected line: 153 / 153
  1375. -- text alignment: 1
  1376. -- font id: 0
  1377. -- text size: 12
  1378. -- style flags: 0
  1379. -- line height: 16
  1380. -- part name: 
  1381.  
  1382.  
  1383. -- part 3428 (button)
  1384. -- low flags: 00
  1385. -- high flags: 0003
  1386. -- rect: left=137 top=280 right=318 bottom=171
  1387. -- title width / last selected line: 0
  1388. -- icon id / first selected line: 156 / 156
  1389. -- text alignment: 1
  1390. -- font id: 0
  1391. -- text size: 12
  1392. -- style flags: 0
  1393. -- line height: 16
  1394. -- part name: 
  1395.  
  1396.  
  1397. -- part 3429 (button)
  1398. -- low flags: 00
  1399. -- high flags: 0003
  1400. -- rect: left=171 top=280 right=318 bottom=205
  1401. -- title width / last selected line: 0
  1402. -- icon id / first selected line: 159 / 159
  1403. -- text alignment: 1
  1404. -- font id: 0
  1405. -- text size: 12
  1406. -- style flags: 0
  1407. -- line height: 16
  1408. -- part name: 
  1409.  
  1410.  
  1411. -- part 3430 (button)
  1412. -- low flags: 00
  1413. -- high flags: 0003
  1414. -- rect: left=205 top=280 right=318 bottom=239
  1415. -- title width / last selected line: 0
  1416. -- icon id / first selected line: 148 / 148
  1417. -- text alignment: 1
  1418. -- font id: 0
  1419. -- text size: 12
  1420. -- style flags: 0
  1421. -- line height: 16
  1422. -- part name: 
  1423.  
  1424.  
  1425. -- part 3431 (button)
  1426. -- low flags: 00
  1427. -- high flags: 0003
  1428. -- rect: left=239 top=280 right=318 bottom=273
  1429. -- title width / last selected line: 0
  1430. -- icon id / first selected line: 147 / 147
  1431. -- text alignment: 1
  1432. -- font id: 0
  1433. -- text size: 12
  1434. -- style flags: 0
  1435. -- line height: 16
  1436. -- part name: 
  1437.  
  1438.  
  1439. -- part 3432 (button)
  1440. -- low flags: 00
  1441. -- high flags: 0003
  1442. -- rect: left=273 top=280 right=318 bottom=307
  1443. -- title width / last selected line: 0
  1444. -- icon id / first selected line: 162 / 162
  1445. -- text alignment: 1
  1446. -- font id: 0
  1447. -- text size: 12
  1448. -- style flags: 0
  1449. -- line height: 16
  1450. -- part name: 
  1451.  
  1452.  
  1453. -- part 3433 (button)
  1454. -- low flags: 00
  1455. -- high flags: 0003
  1456. -- rect: left=307 top=280 right=318 bottom=341
  1457. -- title width / last selected line: 0
  1458. -- icon id / first selected line: 140 / 140
  1459. -- text alignment: 1
  1460. -- font id: 0
  1461. -- text size: 12
  1462. -- style flags: 0
  1463. -- line height: 16
  1464. -- part name: 
  1465.  
  1466.  
  1467. -- part 3434 (button)
  1468. -- low flags: 00
  1469. -- high flags: 0003
  1470. -- rect: left=341 top=280 right=318 bottom=375
  1471. -- title width / last selected line: 0
  1472. -- icon id / first selected line: 155 / 155
  1473. -- text alignment: 1
  1474. -- font id: 0
  1475. -- text size: 12
  1476. -- style flags: 0
  1477. -- line height: 16
  1478. -- part name: 
  1479.  
  1480.  
  1481. -- part 3435 (button)
  1482. -- low flags: 00
  1483. -- high flags: 0003
  1484. -- rect: left=375 top=280 right=318 bottom=409
  1485. -- title width / last selected line: 0
  1486. -- icon id / first selected line: 174 / 174
  1487. -- text alignment: 1
  1488. -- font id: 0
  1489. -- text size: 12
  1490. -- style flags: 0
  1491. -- line height: 16
  1492. -- part name: 
  1493.  
  1494.  
  1495. -- part 3436 (button)
  1496. -- low flags: 00
  1497. -- high flags: 0003
  1498. -- rect: left=409 top=280 right=318 bottom=443
  1499. -- title width / last selected line: 0
  1500. -- icon id / first selected line: 158 / 158
  1501. -- text alignment: 1
  1502. -- font id: 0
  1503. -- text size: 12
  1504. -- style flags: 0
  1505. -- line height: 16
  1506. -- part name: 
  1507.  
  1508.  
  1509. -- part 3437 (button)
  1510. -- low flags: 00
  1511. -- high flags: 0003
  1512. -- rect: left=137 top=52 right=90 bottom=171
  1513. -- title width / last selected line: 0
  1514. -- icon id / first selected line: 143 / 143
  1515. -- text alignment: 1
  1516. -- font id: 0
  1517. -- text size: 12
  1518. -- style flags: 0
  1519. -- line height: 16
  1520. -- part name: 
  1521.  
  1522.  
  1523. -- part 3438 (button)
  1524. -- low flags: 00
  1525. -- high flags: 0003
  1526. -- rect: left=171 top=52 right=90 bottom=205
  1527. -- title width / last selected line: 0
  1528. -- icon id / first selected line: 151 / 151
  1529. -- text alignment: 1
  1530. -- font id: 0
  1531. -- text size: 12
  1532. -- style flags: 0
  1533. -- line height: 16
  1534. -- part name: 
  1535.  
  1536.  
  1537. -- part 3439 (button)
  1538. -- low flags: 00
  1539. -- high flags: 0003
  1540. -- rect: left=205 top=52 right=90 bottom=239
  1541. -- title width / last selected line: 0
  1542. -- icon id / first selected line: 157 / 157
  1543. -- text alignment: 1
  1544. -- font id: 0
  1545. -- text size: 12
  1546. -- style flags: 0
  1547. -- line height: 16
  1548. -- part name: 
  1549.  
  1550.  
  1551. -- part 3440 (button)
  1552. -- low flags: 00
  1553. -- high flags: 0003
  1554. -- rect: left=239 top=52 right=90 bottom=273
  1555. -- title width / last selected line: 0
  1556. -- icon id / first selected line: 175 / 175
  1557. -- text alignment: 1
  1558. -- font id: 0
  1559. -- text size: 12
  1560. -- style flags: 0
  1561. -- line height: 16
  1562. -- part name: 
  1563.  
  1564.  
  1565. -- part 3441 (button)
  1566. -- low flags: 00
  1567. -- high flags: 0003
  1568. -- rect: left=273 top=52 right=90 bottom=307
  1569. -- title width / last selected line: 0
  1570. -- icon id / first selected line: 153 / 153
  1571. -- text alignment: 1
  1572. -- font id: 0
  1573. -- text size: 12
  1574. -- style flags: 0
  1575. -- line height: 16
  1576. -- part name: 
  1577.  
  1578.  
  1579. -- part 3442 (button)
  1580. -- low flags: 00
  1581. -- high flags: 0003
  1582. -- rect: left=307 top=52 right=90 bottom=341
  1583. -- title width / last selected line: 0
  1584. -- icon id / first selected line: 174 / 174
  1585. -- text alignment: 1
  1586. -- font id: 0
  1587. -- text size: 12
  1588. -- style flags: 0
  1589. -- line height: 16
  1590. -- part name: 
  1591.  
  1592.  
  1593. -- part 3443 (button)
  1594. -- low flags: 00
  1595. -- high flags: 0003
  1596. -- rect: left=137 top=90 right=128 bottom=171
  1597. -- title width / last selected line: 0
  1598. -- icon id / first selected line: 160 / 160
  1599. -- text alignment: 1
  1600. -- font id: 0
  1601. -- text size: 12
  1602. -- style flags: 0
  1603. -- line height: 16
  1604. -- part name: 
  1605.  
  1606.  
  1607. -- part 3444 (button)
  1608. -- low flags: 00
  1609. -- high flags: 0003
  1610. -- rect: left=171 top=90 right=128 bottom=205
  1611. -- title width / last selected line: 0
  1612. -- icon id / first selected line: 168 / 168
  1613. -- text alignment: 1
  1614. -- font id: 0
  1615. -- text size: 12
  1616. -- style flags: 0
  1617. -- line height: 16
  1618. -- part name: 
  1619.  
  1620.  
  1621. -- part 3445 (button)
  1622. -- low flags: 00
  1623. -- high flags: 0003
  1624. -- rect: left=205 top=90 right=128 bottom=239
  1625. -- title width / last selected line: 0
  1626. -- icon id / first selected line: 141 / 141
  1627. -- text alignment: 1
  1628. -- font id: 0
  1629. -- text size: 12
  1630. -- style flags: 0
  1631. -- line height: 16
  1632. -- part name: 
  1633.  
  1634.  
  1635. -- part 3446 (button)
  1636. -- low flags: 00
  1637. -- high flags: 0003
  1638. -- rect: left=239 top=90 right=128 bottom=273
  1639. -- title width / last selected line: 0
  1640. -- icon id / first selected line: 143 / 143
  1641. -- text alignment: 1
  1642. -- font id: 0
  1643. -- text size: 12
  1644. -- style flags: 0
  1645. -- line height: 16
  1646. -- part name: 
  1647.  
  1648.  
  1649. -- part 3447 (button)
  1650. -- low flags: 00
  1651. -- high flags: 0003
  1652. -- rect: left=273 top=90 right=128 bottom=307
  1653. -- title width / last selected line: 0
  1654. -- icon id / first selected line: 149 / 149
  1655. -- text alignment: 1
  1656. -- font id: 0
  1657. -- text size: 12
  1658. -- style flags: 0
  1659. -- line height: 16
  1660. -- part name: 
  1661.  
  1662.  
  1663. -- part 3448 (button)
  1664. -- low flags: 00
  1665. -- high flags: 0003
  1666. -- rect: left=307 top=90 right=128 bottom=341
  1667. -- title width / last selected line: 0
  1668. -- icon id / first selected line: 166 / 166
  1669. -- text alignment: 1
  1670. -- font id: 0
  1671. -- text size: 12
  1672. -- style flags: 0
  1673. -- line height: 16
  1674. -- part name: 
  1675.  
  1676.  
  1677. -- part 3449 (button)
  1678. -- low flags: 00
  1679. -- high flags: 0003
  1680. -- rect: left=137 top=128 right=166 bottom=171
  1681. -- title width / last selected line: 0
  1682. -- icon id / first selected line: 145 / 145
  1683. -- text alignment: 1
  1684. -- font id: 0
  1685. -- text size: 12
  1686. -- style flags: 0
  1687. -- line height: 16
  1688. -- part name: 
  1689.  
  1690.  
  1691. -- part 3450 (button)
  1692. -- low flags: 00
  1693. -- high flags: 0003
  1694. -- rect: left=171 top=128 right=166 bottom=205
  1695. -- title width / last selected line: 0
  1696. -- icon id / first selected line: 143 / 143
  1697. -- text alignment: 1
  1698. -- font id: 0
  1699. -- text size: 12
  1700. -- style flags: 0
  1701. -- line height: 16
  1702. -- part name: 
  1703.  
  1704.  
  1705. -- part 3451 (button)
  1706. -- low flags: 00
  1707. -- high flags: 0003
  1708. -- rect: left=205 top=128 right=166 bottom=239
  1709. -- title width / last selected line: 0
  1710. -- icon id / first selected line: 162 / 162
  1711. -- text alignment: 1
  1712. -- font id: 0
  1713. -- text size: 12
  1714. -- style flags: 0
  1715. -- line height: 16
  1716. -- part name: 
  1717.  
  1718.  
  1719. -- part 3452 (button)
  1720. -- low flags: 00
  1721. -- high flags: 0003
  1722. -- rect: left=239 top=128 right=166 bottom=273
  1723. -- title width / last selected line: 0
  1724. -- icon id / first selected line: 161 / 161
  1725. -- text alignment: 1
  1726. -- font id: 0
  1727. -- text size: 12
  1728. -- style flags: 0
  1729. -- line height: 16
  1730. -- part name: 
  1731.  
  1732.  
  1733. -- part 3453 (button)
  1734. -- low flags: 00
  1735. -- high flags: 0003
  1736. -- rect: left=273 top=128 right=166 bottom=307
  1737. -- title width / last selected line: 0
  1738. -- icon id / first selected line: 169 / 169
  1739. -- text alignment: 1
  1740. -- font id: 0
  1741. -- text size: 12
  1742. -- style flags: 0
  1743. -- line height: 16
  1744. -- part name: 
  1745.  
  1746.  
  1747. -- part 3454 (button)
  1748. -- low flags: 00
  1749. -- high flags: 0003
  1750. -- rect: left=307 top=128 right=166 bottom=341
  1751. -- title width / last selected line: 0
  1752. -- icon id / first selected line: 165 / 165
  1753. -- text alignment: 1
  1754. -- font id: 0
  1755. -- text size: 12
  1756. -- style flags: 0
  1757. -- line height: 16
  1758. -- part name: 
  1759.  
  1760.  
  1761. -- part 3455 (button)
  1762. -- low flags: 00
  1763. -- high flags: 0003
  1764. -- rect: left=137 top=166 right=204 bottom=171
  1765. -- title width / last selected line: 0
  1766. -- icon id / first selected line: 152 / 152
  1767. -- text alignment: 1
  1768. -- font id: 0
  1769. -- text size: 12
  1770. -- style flags: 0
  1771. -- line height: 16
  1772. -- part name: 
  1773.  
  1774.  
  1775. -- part 3456 (button)
  1776. -- low flags: 00
  1777. -- high flags: 0003
  1778. -- rect: left=171 top=166 right=204 bottom=205
  1779. -- title width / last selected line: 0
  1780. -- icon id / first selected line: 163 / 163
  1781. -- text alignment: 1
  1782. -- font id: 0
  1783. -- text size: 12
  1784. -- style flags: 0
  1785. -- line height: 16
  1786. -- part name: 
  1787.  
  1788.  
  1789. -- part 3457 (button)
  1790. -- low flags: 00
  1791. -- high flags: 0003
  1792. -- rect: left=205 top=166 right=204 bottom=239
  1793. -- title width / last selected line: 0
  1794. -- icon id / first selected line: 147 / 147
  1795. -- text alignment: 1
  1796. -- font id: 0
  1797. -- text size: 12
  1798. -- style flags: 0
  1799. -- line height: 16
  1800. -- part name: 
  1801.  
  1802.  
  1803. -- part 3458 (button)
  1804. -- low flags: 00
  1805. -- high flags: 0003
  1806. -- rect: left=239 top=166 right=204 bottom=273
  1807. -- title width / last selected line: 0
  1808. -- icon id / first selected line: 151 / 151
  1809. -- text alignment: 1
  1810. -- font id: 0
  1811. -- text size: 12
  1812. -- style flags: 0
  1813. -- line height: 16
  1814. -- part name: 
  1815.  
  1816.  
  1817. -- part 3459 (button)
  1818. -- low flags: 00
  1819. -- high flags: 0003
  1820. -- rect: left=273 top=166 right=204 bottom=307
  1821. -- title width / last selected line: 0
  1822. -- icon id / first selected line: 169 / 169
  1823. -- text alignment: 1
  1824. -- font id: 0
  1825. -- text size: 12
  1826. -- style flags: 0
  1827. -- line height: 16
  1828. -- part name: 
  1829.  
  1830.  
  1831. -- part 3460 (button)
  1832. -- low flags: 00
  1833. -- high flags: 0003
  1834. -- rect: left=307 top=166 right=204 bottom=341
  1835. -- title width / last selected line: 0
  1836. -- icon id / first selected line: 154 / 154
  1837. -- text alignment: 1
  1838. -- font id: 0
  1839. -- text size: 12
  1840. -- style flags: 0
  1841. -- line height: 16
  1842. -- part name: 
  1843.  
  1844.  
  1845. -- part 3461 (button)
  1846. -- low flags: 00
  1847. -- high flags: 0003
  1848. -- rect: left=137 top=204 right=242 bottom=171
  1849. -- title width / last selected line: 0
  1850. -- icon id / first selected line: 145 / 145
  1851. -- text alignment: 1
  1852. -- font id: 0
  1853. -- text size: 12
  1854. -- style flags: 0
  1855. -- line height: 16
  1856. -- part name: 
  1857.  
  1858.  
  1859. -- part 3462 (button)
  1860. -- low flags: 00
  1861. -- high flags: 0003
  1862. -- rect: left=171 top=204 right=242 bottom=205
  1863. -- title width / last selected line: 0
  1864. -- icon id / first selected line: 174 / 174
  1865. -- text alignment: 1
  1866. -- font id: 0
  1867. -- text size: 12
  1868. -- style flags: 0
  1869. -- line height: 16
  1870. -- part name: 
  1871.  
  1872.  
  1873. -- part 3463 (button)
  1874. -- low flags: 00
  1875. -- high flags: 0003
  1876. -- rect: left=205 top=204 right=242 bottom=239
  1877. -- title width / last selected line: 0
  1878. -- icon id / first selected line: 171 / 171
  1879. -- text alignment: 1
  1880. -- font id: 0
  1881. -- text size: 12
  1882. -- style flags: 0
  1883. -- line height: 16
  1884. -- part name: 
  1885.  
  1886.  
  1887. -- part 3464 (button)
  1888. -- low flags: 00
  1889. -- high flags: 0003
  1890. -- rect: left=239 top=204 right=242 bottom=273
  1891. -- title width / last selected line: 0
  1892. -- icon id / first selected line: 142 / 142
  1893. -- text alignment: 1
  1894. -- font id: 0
  1895. -- text size: 12
  1896. -- style flags: 0
  1897. -- line height: 16
  1898. -- part name: 
  1899.  
  1900.  
  1901. -- part 3465 (button)
  1902. -- low flags: 00
  1903. -- high flags: 0003
  1904. -- rect: left=273 top=204 right=242 bottom=307
  1905. -- title width / last selected line: 0
  1906. -- icon id / first selected line: 173 / 173
  1907. -- text alignment: 1
  1908. -- font id: 0
  1909. -- text size: 12
  1910. -- style flags: 0
  1911. -- line height: 16
  1912. -- part name: 
  1913.  
  1914.  
  1915. -- part 3466 (button)
  1916. -- low flags: 00
  1917. -- high flags: 0003
  1918. -- rect: left=307 top=204 right=242 bottom=341
  1919. -- title width / last selected line: 0
  1920. -- icon id / first selected line: 164 / 164
  1921. -- text alignment: 1
  1922. -- font id: 0
  1923. -- text size: 12
  1924. -- style flags: 0
  1925. -- line height: 16
  1926. -- part name: 
  1927.  
  1928.  
  1929. -- part 3467 (button)
  1930. -- low flags: 00
  1931. -- high flags: 0003
  1932. -- rect: left=137 top=242 right=280 bottom=171
  1933. -- title width / last selected line: 0
  1934. -- icon id / first selected line: 166 / 166
  1935. -- text alignment: 1
  1936. -- font id: 0
  1937. -- text size: 12
  1938. -- style flags: 0
  1939. -- line height: 16
  1940. -- part name: 
  1941.  
  1942.  
  1943. -- part 3468 (button)
  1944. -- low flags: 00
  1945. -- high flags: 0003
  1946. -- rect: left=171 top=242 right=280 bottom=205
  1947. -- title width / last selected line: 0
  1948. -- icon id / first selected line: 150 / 150
  1949. -- text alignment: 1
  1950. -- font id: 0
  1951. -- text size: 12
  1952. -- style flags: 0
  1953. -- line height: 16
  1954. -- part name: 
  1955.  
  1956.  
  1957. -- part 3469 (button)
  1958. -- low flags: 00
  1959. -- high flags: 0003
  1960. -- rect: left=205 top=242 right=280 bottom=239
  1961. -- title width / last selected line: 0
  1962. -- icon id / first selected line: 249 / 249
  1963. -- text alignment: 1
  1964. -- font id: 0
  1965. -- text size: 12
  1966. -- style flags: 0
  1967. -- line height: 16
  1968. -- part name: 
  1969.  
  1970.  
  1971. -- part 3470 (button)
  1972. -- low flags: 00
  1973. -- high flags: 0003
  1974. -- rect: left=239 top=242 right=280 bottom=273
  1975. -- title width / last selected line: 0
  1976. -- icon id / first selected line: 144 / 144
  1977. -- text alignment: 1
  1978. -- font id: 0
  1979. -- text size: 12
  1980. -- style flags: 0
  1981. -- line height: 16
  1982. -- part name: 
  1983.  
  1984.  
  1985. -- part 3471 (button)
  1986. -- low flags: 00
  1987. -- high flags: 0003
  1988. -- rect: left=273 top=242 right=280 bottom=307
  1989. -- title width / last selected line: 0
  1990. -- icon id / first selected line: 157 / 157
  1991. -- text alignment: 1
  1992. -- font id: 0
  1993. -- text size: 12
  1994. -- style flags: 0
  1995. -- line height: 16
  1996. -- part name: 
  1997.  
  1998.  
  1999. -- part 3472 (button)
  2000. -- low flags: 00
  2001. -- high flags: 0003
  2002. -- rect: left=307 top=242 right=280 bottom=341
  2003. -- title width / last selected line: 0
  2004. -- icon id / first selected line: 157 / 157
  2005. -- text alignment: 1
  2006. -- font id: 0
  2007. -- text size: 12
  2008. -- style flags: 0
  2009. -- line height: 16
  2010. -- part name: 
  2011.  
  2012.  
  2013. -- part 3473 (button)
  2014. -- low flags: 00
  2015. -- high flags: 0003
  2016. -- rect: left=171 top=90 right=128 bottom=205
  2017. -- title width / last selected line: 0
  2018. -- icon id / first selected line: 146 / 146
  2019. -- text alignment: 1
  2020. -- font id: 0
  2021. -- text size: 12
  2022. -- style flags: 0
  2023. -- line height: 16
  2024. -- part name: 
  2025.  
  2026.  
  2027. -- part 3474 (button)
  2028. -- low flags: 00
  2029. -- high flags: 0003
  2030. -- rect: left=205 top=90 right=128 bottom=239
  2031. -- title width / last selected line: 0
  2032. -- icon id / first selected line: 163 / 163
  2033. -- text alignment: 1
  2034. -- font id: 0
  2035. -- text size: 12
  2036. -- style flags: 0
  2037. -- line height: 16
  2038. -- part name: 
  2039.  
  2040.  
  2041. -- part 3475 (button)
  2042. -- low flags: 00
  2043. -- high flags: 0003
  2044. -- rect: left=239 top=90 right=128 bottom=273
  2045. -- title width / last selected line: 0
  2046. -- icon id / first selected line: 152 / 152
  2047. -- text alignment: 1
  2048. -- font id: 0
  2049. -- text size: 12
  2050. -- style flags: 0
  2051. -- line height: 16
  2052. -- part name: 
  2053.  
  2054.  
  2055. -- part 3476 (button)
  2056. -- low flags: 00
  2057. -- high flags: 0003
  2058. -- rect: left=273 top=90 right=128 bottom=307
  2059. -- title width / last selected line: 0
  2060. -- icon id / first selected line: 153 / 153
  2061. -- text alignment: 1
  2062. -- font id: 0
  2063. -- text size: 12
  2064. -- style flags: 0
  2065. -- line height: 16
  2066. -- part name: 
  2067.  
  2068.  
  2069. -- part 3477 (button)
  2070. -- low flags: 00
  2071. -- high flags: 0003
  2072. -- rect: left=171 top=128 right=166 bottom=205
  2073. -- title width / last selected line: 0
  2074. -- icon id / first selected line: 146 / 146
  2075. -- text alignment: 1
  2076. -- font id: 0
  2077. -- text size: 12
  2078. -- style flags: 0
  2079. -- line height: 16
  2080. -- part name: 
  2081.  
  2082.  
  2083. -- part 3478 (button)
  2084. -- low flags: 00
  2085. -- high flags: 0003
  2086. -- rect: left=205 top=128 right=166 bottom=239
  2087. -- title width / last selected line: 0
  2088. -- icon id / first selected line: 159 / 159
  2089. -- text alignment: 1
  2090. -- font id: 0
  2091. -- text size: 12
  2092. -- style flags: 0
  2093. -- line height: 16
  2094. -- part name: 
  2095.  
  2096.  
  2097. -- part 3479 (button)
  2098. -- low flags: 00
  2099. -- high flags: 0003
  2100. -- rect: left=239 top=128 right=166 bottom=273
  2101. -- title width / last selected line: 0
  2102. -- icon id / first selected line: 144 / 144
  2103. -- text alignment: 1
  2104. -- font id: 0
  2105. -- text size: 12
  2106. -- style flags: 0
  2107. -- line height: 16
  2108. -- part name: 
  2109.  
  2110.  
  2111. -- part 3480 (button)
  2112. -- low flags: 00
  2113. -- high flags: 0003
  2114. -- rect: left=273 top=128 right=166 bottom=307
  2115. -- title width / last selected line: 0
  2116. -- icon id / first selected line: 167 / 167
  2117. -- text alignment: 1
  2118. -- font id: 0
  2119. -- text size: 12
  2120. -- style flags: 0
  2121. -- line height: 16
  2122. -- part name: 
  2123.  
  2124.  
  2125. -- part 3481 (button)
  2126. -- low flags: 00
  2127. -- high flags: 0003
  2128. -- rect: left=171 top=166 right=204 bottom=205
  2129. -- title width / last selected line: 0
  2130. -- icon id / first selected line: 213 / 213
  2131. -- text alignment: 1
  2132. -- font id: 0
  2133. -- text size: 12
  2134. -- style flags: 0
  2135. -- line height: 16
  2136. -- part name: 
  2137.  
  2138.  
  2139. -- part 3482 (button)
  2140. -- low flags: 00
  2141. -- high flags: 0003
  2142. -- rect: left=205 top=166 right=204 bottom=239
  2143. -- title width / last selected line: 0
  2144. -- icon id / first selected line: 148 / 148
  2145. -- text alignment: 1
  2146. -- font id: 0
  2147. -- text size: 12
  2148. -- style flags: 0
  2149. -- line height: 16
  2150. -- part name: 
  2151.  
  2152.  
  2153. -- part 3483 (button)
  2154. -- low flags: 00
  2155. -- high flags: 0003
  2156. -- rect: left=239 top=166 right=204 bottom=273
  2157. -- title width / last selected line: 0
  2158. -- icon id / first selected line: 150 / 150
  2159. -- text alignment: 1
  2160. -- font id: 0
  2161. -- text size: 12
  2162. -- style flags: 0
  2163. -- line height: 16
  2164. -- part name: 
  2165.  
  2166.  
  2167. -- part 3484 (button)
  2168. -- low flags: 00
  2169. -- high flags: 0003
  2170. -- rect: left=273 top=166 right=204 bottom=307
  2171. -- title width / last selected line: 0
  2172. -- icon id / first selected line: 170 / 170
  2173. -- text alignment: 1
  2174. -- font id: 0
  2175. -- text size: 12
  2176. -- style flags: 0
  2177. -- line height: 16
  2178. -- part name: 
  2179.  
  2180.  
  2181. -- part 3485 (button)
  2182. -- low flags: 00
  2183. -- high flags: 0003
  2184. -- rect: left=171 top=204 right=242 bottom=205
  2185. -- title width / last selected line: 0
  2186. -- icon id / first selected line: 177 / 177
  2187. -- text alignment: 1
  2188. -- font id: 0
  2189. -- text size: 12
  2190. -- style flags: 0
  2191. -- line height: 16
  2192. -- part name: 
  2193.  
  2194.  
  2195. -- part 3486 (button)
  2196. -- low flags: 00
  2197. -- high flags: 0003
  2198. -- rect: left=205 top=204 right=242 bottom=239
  2199. -- title width / last selected line: 0
  2200. -- icon id / first selected line: 147 / 147
  2201. -- text alignment: 1
  2202. -- font id: 0
  2203. -- text size: 12
  2204. -- style flags: 0
  2205. -- line height: 16
  2206. -- part name: 
  2207.  
  2208.  
  2209. -- part 3487 (button)
  2210. -- low flags: 00
  2211. -- high flags: 0003
  2212. -- rect: left=239 top=204 right=242 bottom=273
  2213. -- title width / last selected line: 0
  2214. -- icon id / first selected line: 157 / 157
  2215. -- text alignment: 1
  2216. -- font id: 0
  2217. -- text size: 12
  2218. -- style flags: 0
  2219. -- line height: 16
  2220. -- part name: 
  2221.  
  2222.  
  2223. -- part 3488 (button)
  2224. -- low flags: 00
  2225. -- high flags: 0003
  2226. -- rect: left=273 top=204 right=242 bottom=307
  2227. -- title width / last selected line: 0
  2228. -- icon id / first selected line: 154 / 154
  2229. -- text alignment: 1
  2230. -- font id: 0
  2231. -- text size: 12
  2232. -- style flags: 0
  2233. -- line height: 16
  2234. -- part name: 
  2235.  
  2236.  
  2237. -- part 3489 (button)
  2238. -- low flags: 00
  2239. -- high flags: 0003
  2240. -- rect: left=205 top=128 right=166 bottom=239
  2241. -- title width / last selected line: 0
  2242. -- icon id / first selected line: 149 / 149
  2243. -- text alignment: 1
  2244. -- font id: 0
  2245. -- text size: 12
  2246. -- style flags: 0
  2247. -- line height: 16
  2248. -- part name: 
  2249.  
  2250.  
  2251. -- part 3490 (button)
  2252. -- low flags: 00
  2253. -- high flags: 0003
  2254. -- rect: left=239 top=128 right=166 bottom=273
  2255. -- title width / last selected line: 0
  2256. -- icon id / first selected line: 173 / 173
  2257. -- text alignment: 1
  2258. -- font id: 0
  2259. -- text size: 12
  2260. -- style flags: 0
  2261. -- line height: 16
  2262. -- part name: 
  2263.  
  2264.  
  2265. -- part 3491 (button)
  2266. -- low flags: 00
  2267. -- high flags: 0003
  2268. -- rect: left=205 top=166 right=204 bottom=239
  2269. -- title width / last selected line: 0
  2270. -- icon id / first selected line: 145 / 145
  2271. -- text alignment: 1
  2272. -- font id: 0
  2273. -- text size: 12
  2274. -- style flags: 0
  2275. -- line height: 16
  2276. -- part name: 
  2277.  
  2278.  
  2279. -- part 3492 (button)
  2280. -- low flags: 00
  2281. -- high flags: 0003
  2282. -- rect: left=239 top=166 right=204 bottom=273
  2283. -- title width / last selected line: 0
  2284. -- icon id / first selected line: 174 / 174
  2285. -- text alignment: 1
  2286. -- font id: 0
  2287. -- text size: 12
  2288. -- style flags: 0
  2289. -- line height: 16
  2290. -- part name: 
  2291.  
  2292.  
  2293. -- part 3493 (button)
  2294. -- low flags: 00
  2295. -- high flags: 0003
  2296. -- rect: left=222 top=147 right=185 bottom=256
  2297. -- title width / last selected line: 0
  2298. -- icon id / first selected line: 170 / 170
  2299. -- text alignment: 1
  2300. -- font id: 0
  2301. -- text size: 12
  2302. -- style flags: 0
  2303. -- line height: 16
  2304. -- part name: 
  2305.  
  2306.  
  2307. -- part 3494 (button)
  2308. -- low flags: 00
  2309. -- high flags: 0003
  2310. -- rect: left=1 top=147 right=185 bottom=35
  2311. -- title width / last selected line: 0
  2312. -- icon id / first selected line: 168 / 168
  2313. -- text alignment: 1
  2314. -- font id: 0
  2315. -- text size: 12
  2316. -- style flags: 0
  2317. -- line height: 16
  2318. -- part name: 
  2319.  
  2320.  
  2321. -- part 3495 (button)
  2322. -- low flags: 00
  2323. -- high flags: 0003
  2324. -- rect: left=443 top=147 right=185 bottom=477
  2325. -- title width / last selected line: 0
  2326. -- icon id / first selected line: 165 / 165
  2327. -- text alignment: 1
  2328. -- font id: 0
  2329. -- text size: 12
  2330. -- style flags: 0
  2331. -- line height: 16
  2332. -- part name: 
  2333.  
  2334.  
  2335. -- part 3496 (button)
  2336. -- low flags: 00
  2337. -- high flags: 0003
  2338. -- rect: left=477 top=147 right=185 bottom=511
  2339. -- title width / last selected line: 0
  2340. -- icon id / first selected line: 151 / 151
  2341. -- text alignment: 1
  2342. -- font id: 0
  2343. -- text size: 12
  2344. -- style flags: 0
  2345. -- line height: 16
  2346. -- part name: 
  2347.